home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 August: Tool Chest / Dev.CD Aug 00 TC Disk 1.toast / pc / sample code / contributed / waste / extras / unsupported / weextras.h < prev   
Encoding:
C/C++ Source or Header  |  2000-06-23  |  692 b   |  31 lines

  1. /*
  2.  *    WEExtras.h
  3.  *
  4.  *    Routines for installing and removing various "extras"
  5.  *
  6.  *    Written by Jonathan Kew
  7.  *
  8.  */
  9.  
  10. #ifndef _WASTE_
  11. #include "WASTE.h"
  12. #endif
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18. pascal OSErr WEInstallCrOnlyHook( WEReference we );
  19. pascal OSErr WERemoveCrOnlyHook( WEReference we );
  20. pascal Boolean WEIsCrOnly( WEReference we );
  21.  
  22. pascal OSErr WEInstallShowInvisiblesHook(WEReference we);
  23. pascal OSErr WERemoveShowInvisiblesHook( WEReference we );
  24. pascal OSErr WESetInvisiblesColor( const RGBColor *color, WEReference we );
  25. pascal OSErr WEGetInvisiblesColor( RGBColor *color, WEReference we );
  26. pascal Boolean WEIsShowInvisibles( WEReference we );
  27.  
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31.